home *** CD-ROM | disk | FTP | other *** search
/ Acorn Risc Technologies StrongARM CD-ROM / Acorn Risc Technologies StrongARM CD-ROM.iso / ftp / documents / acornusr / 1989 / sep89 < prev   
Encoding:
Text File  |  1996-02-28  |  3.2 KB  |  63 lines

  1. 23/02/95
  2. * With the release of RISC OS comes a new 6502 emulator called !65Host. This
  3. application substantially emulates a BBC model B microcomputer running OS
  4. 1.2. It supports direct screen accesses, paged sideways ROMs and direct
  5. accesses to some hardware. As a result, the Customer Support department
  6. would like your help in compiling lists of software that work under this
  7. emulator, the 65Arthur Tube emulator and the PC emulator. If you know of any
  8. packages which run under these emulators, please write in, stating which
  9. version of the package you have used, what problems you have encountered,
  10. which emulator (and version of emulator) and which computer you are using.
  11.  
  12.  
  13. * In the Master Compact there is a chip called the EEPROM (Electrically
  14. Erasable Programmable Read-Only Memory), this chip does almost the same job
  15. as the CMOS RAM and battery backup in the Master 128. This chip basically
  16. holds the configuration settings used in the Master Compact. The chip has a
  17. limited life of about 10,000 writes to it before it needs replacing. This
  18. may seem like quite a lot, but there are a number of software packages which
  19. use the EEPROM to store values when they are running, or  to store
  20. configuration values for when the software isĀ used at a later date. If you
  21. begin to have problems with the configuration after  using the Master
  22. Compact for the period of 1 to 2 years this may well be the cause of the
  23. problem. New EEPROMs are available for a small cost from your local Acorn
  24. Dealer. This should be regarded in much the same way as replacing the
  25. battery in other Acorn Computers.
  26.  
  27. * It is possible to create your own boot sequence when starting up RISC OS.
  28. This will allow you to load in whichever applications you like when you
  29. first start the Desktop. An example of this is below.
  30.  
  31. Create a Text file using !Edit, and type in:
  32.  
  33.   Filer_OpenDir adfs::Disc.$
  34.   Run adfs::Disc.app1.!System.!Boot
  35.   Run adfs::Disc.app1.!Draw.!Boot
  36.   Run adfs::Disc.app1.!Paint.!Boot
  37.   Run adfs::Disc.app1.!Edit
  38.   Run adfs::Disc.app2.!Alarm
  39.   Run adfs::Disc.app2.!TinyDirs adfs::Disc.app2.!Magnifier
  40.  
  41. (The name Disc is assumed to be the name of your disc. Choose a different
  42. name if you prefer.) Save this as DeskTasks in your discs root directory.
  43.  
  44. Now add the following line to the very end of your !Boot file:
  45.   *Desktop -file adfs::Disc.DeskTasks
  46.  
  47. Now CTRL-RESET your machine. Your boot sequence will execute, there will be
  48. a short pause, and then you will enter the desktop with your Disc's root
  49. directory open, with !Edit, !Alarm and !TinyDirs running, and !Magnifier
  50. loaded into !TinyDirs.
  51.  
  52. What has happened is that the *desktop command has run each line of the
  53. DeskTasks file as a task within the window world. !System.!Boot must be run
  54. before !Edit is run: this is equivalent to !System being "seen" in a Filer
  55. directory viewer, and tells !Edit (and anyone else who needs to know) where
  56. system resources can be found.
  57.  
  58. Note that all applications are quoted with their full path-name, including
  59. filing system name and drive name or number. It's an important principle of
  60. operation in the desktop that, as far as possible, all objects are
  61. identified by a full path-name, and so access to them is unaffected by
  62. changes of current directory, drive, or filing system.
  63.